home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlb20 / lib / raise.c < prev    next >
C/C++ Source or Header  |  1991-04-15  |  158b  |  13 lines

  1. /* I think ANSI wants this. It's useful, at any rate.
  2.    -- ERS
  3. */
  4.  
  5. #include <unistd.h>
  6.  
  7. int
  8. raise(sig)
  9. int sig;
  10. {
  11.     return kill(getpid(), sig);
  12. }
  13.